Since GTK4, the functions that used the GtkPackType enumeration,
`gtk_box_pack_{start,end}`, were replaced by `gtk_box_{append,prepend}`,
hence this enumeration isn't used anymore by any function within the
GtkBox type, and the child packing properties were also removed for GTK4.
So this commit adapts the documentation accordingly.
/**
* GtkPackType:
- * @GTK_PACK_START: The child is packed into the start of the box
- * @GTK_PACK_END: The child is packed into the end of the box
+ * @GTK_PACK_START: The child is packed into the start of the widget
+ * @GTK_PACK_END: The child is packed into the end of the widget
*
- * Represents the packing location #GtkBox children
+ * Represents the packing location of a children in its parent.
+ * See #GtkWindowControls for example.
*/
typedef enum
{